Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/19 - Traffic Lights/

assets /cody/swapnilsparsh/30DaysOfJavaScript/19 - Traffic Lights/assets/
1 Items
  • traffic-lights.png
  • font /cody/swapnilsparsh/30DaysOfJavaScript/19 - Traffic Lights/font/
    1 Items
  • sans.ttf
  • index.html /cody/swapnilsparsh/30DaysOfJavaScript/19 - Traffic Lights/index.html
    442 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    script.js /cody/swapnilsparsh/30DaysOfJavaScript/19 - Traffic Lights/script.js
    254 Views
    0 Comments
    const circles = document.querySelectorAll('.circle')
    let activeLight = 0;

    setInterval(() => {
    changeLight();
    }, 1000);

    functi
    style.css /cody/swapnilsparsh/30DaysOfJavaScript/19 - Traffic Lights/style.css
    173 Views
    0 Comments
    * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'sans';
    }

    @font-face {